home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Other Langs / MacPerl ƒ / lib / find.pl < prev    next >
Text File  |  1993-10-23  |  2KB  |  108 lines

  1. # Usage:
  2. #    require "find.pl";
  3. #
  4. #    &find('/foo','/bar');
  5. #
  6. #    sub wanted { ... }
  7. #        where wanted does whatever you want.  $dir contains the
  8. #        current directory name, and $_ the current filename within
  9. #        that directory.  $name contains "$dir/$_".  You are cd'ed
  10. #        to $dir when the function is called.  The function may
  11. #        set $prune to prune the tree.
  12. #
  13. # This library is primarily for find2perl, which, when fed
  14. #
  15. #   find2perl / -name .nfs\* -mtime +7 -exec rm -f {} \; -o -fstype nfs -prune
  16. #
  17. # spits out something like this
  18. #
  19. #    sub wanted {
  20. #        /^\.nfs.*$/ &&
  21. #        (($dev,$ino,$mode,$nlink,$uid,$gid) = lstat($_)) &&
  22. #        int(-M _) > 7 &&
  23. #        unlink($_)
  24. #        ||
  25. #        ($nlink || (($dev,$ino,$mode,$nlink,$uid,$gid) = lstat($_))) &&
  26. #        $dev < 0 &&
  27. #        ($prune = 1);
  28. #    }
  29. #
  30. # Converted to Mac by Charlie Reiman <reiman@kaleida.com>
  31. #
  32.  
  33. sub find {
  34.     chop($cwd = `pwd`);
  35.     foreach $topdir (@_) {
  36.     (($topdev,$topino,$topmode,$topnlink) = stat($topdir))
  37.       || (warn("Can't stat $topdir: $!\n"), next);
  38.     if (-d _) {
  39.         if (chdir($topdir)) {
  40.         ($dir,$_) = ($topdir,':');
  41.         $name = $topdir;
  42.         &wanted;
  43.         $topdir =~ s,:$,, ;
  44.         &finddir($topdir,$topnlink);
  45.         }
  46.         else {
  47.         warn "Can't cd to $topdir: $!\n";
  48.         }
  49.     }
  50.     else {
  51.         unless (($dir,$_) = $topdir =~ m#^(.*:)(.*)$#) {
  52.         ($dir,$_) = (':', $topdir);
  53.         }
  54.         $name = $topdir;
  55.         chdir $dir && &wanted;
  56.     }
  57.     chdir $cwd;
  58.     }
  59. }
  60.  
  61. sub finddir {
  62.     local($dir,$nlink) = @_;
  63.     local($dev,$ino,$mode,$subcount);
  64.     local($name);
  65.  
  66.     # Get the list of files in the current directory.
  67.  
  68.     opendir(DIR,':') || (warn "Can't open $dir: $!\n", return);
  69.     local(@filenames) = readdir(DIR);
  70.     closedir(DIR);
  71.  
  72.     if ($nlink == 2) {        # This dir has no subdirectories.
  73.     for (@filenames) {
  74.         next if $_ eq ':';
  75.         $name = "$dir:$_";
  76.         $nlink = 0;
  77.         &wanted;
  78.     }
  79.     }
  80.     else {                    # This dir has subdirectories.
  81.     $subcount = $nlink - 2;
  82.     for (@filenames) {
  83.         next if $_ eq ':';
  84.         $nlink = $prune = 0;
  85.         $name = "$dir:$_";
  86.         &wanted;
  87.         if ($subcount > 0) {    # Seen all the subdirs?
  88.  
  89.         # Get link count and check for directoriness.
  90.  
  91.         ($dev,$ino,$mode,$nlink) = lstat($_) unless $nlink;
  92.         
  93.         if (-d _) {
  94.  
  95.             # It really is a directory, so do it recursively.
  96.  
  97.             if (!$prune && chdir $_) {
  98.             &finddir($name,$nlink);
  99.             chdir '::';
  100.             }
  101.             --$subcount;
  102.         }
  103.         }
  104.     }
  105.     }
  106. }
  107. 1;
  108.